home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #14 / CD 14 (Black) - 2001.iso / K-CS.DCR / 00457_Hilite, MouseUp -- Hop.ls < prev    next >
Encoding:
Text File  |  2001-09-23  |  262 b   |  16 lines

  1. on new me
  2.   set the visible of sprite the currentSpriteNum to 0
  3. end
  4.  
  5. on mouseDown
  6.   go(#next)
  7. end
  8.  
  9. on mouseEnter me
  10.   set the visible of sprite (the currentSpriteNum + 1) to 1
  11. end
  12.  
  13. on mouseLeave me
  14.   set the visible of sprite (the currentSpriteNum + 1) to 0
  15. end
  16.